home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00008_ObjectUpdater.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  1.3 KB  |  62 lines

  1. --
  2. -- ObjectUpdater
  3. --
  4.  
  5. -- this little class is placed in the actor list and is responsible for
  6. -- passing events to given instantiated objects, thereby avoiding long repeat loops (i.e. when 
  7. -- waiting for a sound to finish)
  8.  
  9. -- for this to work properly, all given objects must have a stepFrame handler at the root 
  10. -- ancestor.  All stepFrame handlers should call a stepFrame ancestor handler when they are done -- doing their actions.  This will allow updates for all classes that want an update.
  11.  
  12.  
  13. property ancestor
  14. property objectList
  15.  
  16.  
  17. on new me, obj
  18.   set ancestor = 0
  19.   set objectList = []
  20.   if objectP (obj) then add (objectList, obj)
  21.   return me
  22. end
  23.  
  24.  
  25. on destruct me
  26.   set objectList = 0
  27.   if objectP (ancestor) then destruct (ancestor)
  28.   set ancestor = 0
  29. end
  30.  
  31.  
  32. -- add an object to the list:
  33.  
  34. on addObject me, obj
  35.   if objectP (obj) then add (objectList, obj)
  36. end
  37.  
  38.  
  39. -- remove an object from the list:
  40.  
  41. on removeObject me, obj
  42.   set num = count (objectList)
  43.   repeat with i = 1 to num
  44.     if getAt (objectList, i) = obj then deleteAt (objectList, i)
  45.   end repeat
  46. end
  47.  
  48.  
  49.  
  50. -- pass the stepFrame event to each object in the list:
  51.  
  52. on stepFrame me
  53.   repeat with obj in objectList
  54.     if objectP (obj) then stepFrame (obj)
  55.   end repeat
  56. end
  57.  
  58.  
  59. on actorType me
  60.   return #ObjectUpdater
  61. end
  62.